home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / intrvews / tut-code.lha / tut-code / himom / main.c < prev   
Encoding:
C/C++ Source or Header  |  1992-01-02  |  437 b   |  19 lines

  1. #include <IV-look/kit.h>
  2. #include <InterViews/background.h>
  3. #include <InterViews/session.h>
  4. #include <InterViews/style.h>
  5. #include <InterViews/window.h>
  6.  
  7. int main(int argc, char** argv) {
  8.     Session* session = new Session("Himom", argc, argv);
  9.     Style* style = session->style();
  10.     session->run_window(
  11.     new ApplicationWindow(
  12.         new Background(
  13.         Kit::instance()->label("hi mom!", style),
  14.         style->background()
  15.         )
  16.     )
  17.     );
  18. }
  19.